home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NASA Climatology Interdisciplinary Data Collection
/
NASA Climatology Interdisciplinary Data Collection - Disc 4.iso
/
software
/
grads
/
lib
/
functions
/
incdtgm.gf
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-02-17
|
334 b
|
21 lines
function incdtgm(dtgm,inc)
*
* increment a monthdtg by inc months
* RESTRICTIONS!!
* (1) inc < one year
*
moname='JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC'
iyr=substr(dtgm,1,2)*1
imo=substr(dtgm,3,2)*1
imo=imo+inc
say 'new imo = 'imo
if(imo>=13)
imo=imo-12
iyr=iyr+1
endif
return (iyr*100+imo)